home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.3 (Developer)…68k, x86, SPARC, PA-RISC] / NeXTSTEP 3.3 Dev Intel.iso / NextDeveloper / Headers / bsd / memory.h < prev    next >
C/C++ Source or Header  |  1990-05-09  |  540b  |  23 lines

  1. /*
  2.  * Copyright (c) 1985 Regents of the University of California.
  3.  * All rights reserved.  The Berkeley software License Agreement
  4.  * specifies the terms and conditions for redistribution.
  5.  *
  6.  *    @(#)memory.h    5.1 (Berkeley) 85/08/05
  7.  */
  8.  
  9. /*
  10.  * Definitions of the Sys5 compat memory manipulation routines
  11.  */
  12.  
  13. extern char *memccpy();
  14. extern int memcmp();
  15. #ifdef    __STRICT_BSD__
  16. extern char *memchr();
  17. extern char *memcpy();
  18. extern char *memset();
  19. #else
  20. extern void *memchr();
  21. extern void *memcpy();
  22. extern void *memset();
  23. #endif    __STRICT_BSD__